encoding/binary.bigEndian.PutUint64 (method, view implemented interface methods)
21 uses
encoding/binary (current package)
binary.go#L184: func (bigEndian) PutUint64(b []byte, v uint64) {
encoding/base64
base64.go#L510: binary.BigEndian.PutUint64(dst[n:], dn)
crypto/cipher
gcm.go#L406: binary.BigEndian.PutUint64(counter[:8], y.low)
gcm.go#L407: binary.BigEndian.PutUint64(counter[8:], y.high)
gcm.go#L423: binary.BigEndian.PutUint64(out, y.low)
gcm.go#L424: binary.BigEndian.PutUint64(out[8:], y.high)
crypto/des
block.go#L35: binary.BigEndian.PutUint64(dst, permuteFinalBlock(preOutput))
cipher.go#L119: binary.BigEndian.PutUint64(dst, permuteFinalBlock(preOutput))
cipher.go#L154: binary.BigEndian.PutUint64(dst, permuteFinalBlock(preOutput))
crypto/sha1
sha1.go#L169: binary.BigEndian.PutUint64(padlen[t:], len)
crypto/sha256
sha256.go#L229: binary.BigEndian.PutUint64(padlen[t+0:], len)
crypto/sha512
sha512.go#L320: binary.BigEndian.PutUint64(padlen[t+8:], len)
sha512.go#L328: binary.BigEndian.PutUint64(digest[0:], d.h[0])
sha512.go#L329: binary.BigEndian.PutUint64(digest[8:], d.h[1])
sha512.go#L330: binary.BigEndian.PutUint64(digest[16:], d.h[2])
sha512.go#L331: binary.BigEndian.PutUint64(digest[24:], d.h[3])
sha512.go#L332: binary.BigEndian.PutUint64(digest[32:], d.h[4])
sha512.go#L333: binary.BigEndian.PutUint64(digest[40:], d.h[5])
sha512.go#L335: binary.BigEndian.PutUint64(digest[48:], d.h[6])
sha512.go#L336: binary.BigEndian.PutUint64(digest[56:], d.h[7])
nhooyr.io/websocket
frame.go#L155: binary.BigEndian.PutUint64(buf, uint64(h.payloadLength))
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |